:root {
    --brand-color-1: #713abe;
    --nav-bg-color: #713abe;
    --nav-bg-rev-color: #1f1f1f;
    --nav-text-color: #ffffff;
    --nav-hover-bg-color: #9C27B0;
    --nav-hover-text-color: #ffffff;
    --nav-link-hover-transform: 10px;
    --login-btn-bg-color: #9C27B0;
    --login-btn-text-color: #ffffff;
    --login-btn-hover-bg-color: #ffffff;
    --login-btn-hover-text-color: #9C27B0;
    --lightbulb-color: #FFD700;
    --toggle-icon-color: #ffffff;
}

body.dark-mode {
    --nav-bg-color: #1f1f1f;
    --nav-bg-rev-color: #FFFFFF;
    --nav-text-color: #ffffff;
    --login-btn-bg-color: #9C27B0;
    --login-btn-text-color: #ffffff;
    --login-btn-hover-bg-color: #ffffff;
    --login-btn-hover-text-color: #9C27B0;
    --toggle-icon-color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--nav-bg-color);
    color: var(--nav-text-color);
    transition: background-color 0.3s, color 0.3s;
}

:root {
    --font-family: var('Poppins', sans-serif)
}

/*-----Generic---*/
/* styles.css */

#pdfViewer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

#pdfCanvas {
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#toast-container {
    position: fixed;
    top: 10%;
    left: auto;
    right: 5px;
    max-width: 320px;
    width: 100%;


    .toast {
        border-radius: 10px;
        background-color: #2c3e50;
        /* Darker background for high contrast */
        color: #ecf0f1;
        /* Light text color for high contrast */
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
        display: flex;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        width: 100%;
        max-width: 100%;

        /* Simpler font family */
        &.show {
            background-color: #2980b9;
            /* Moderate blue background */
            color: #ffffff;
            font-weight: 500;
            opacity: 1;
            display: flex;
            flex-direction: column;
        }

        .toast-back {
            margin-right: 15px;
            /* Increased margin for better spacing */
            cursor: pointer;
            color: #e74c3c;
            /* Red color for back button */
            font-size: 24px;
            /* Larger size for better visibility */
        }

        .toast-message {
            font-size: 16px;
            font-family: inherit;
            display: flex;
            text-align: center;
        }

        .progress-bar {
            width: 100%;
            /* Full width for responsive behavior */
            height: 10px;
            background-color: #34495e;
            /* Darker background for progress bar */
            border-radius: 5px;
            overflow: hidden;
            margin-top: 10px;
            /* Add margin for better spacing */
        }

        .progress-bar-fill {
            height: 100%;
            background: var(--nav-hover-text-color);
            width: 0%;
        }

        @media (max-width: 600px) {
            .toast {
                font-size: 14px;
                /* Smaller text for smaller screens */
                padding: 15px;
                /* Reduced padding for smaller screens */
            }

            .toast .toast-back {
                font-size: 20px;
                /* Adjust icon size for smaller screens */
            }
        }
    }
}

/*----navigation-conatiner---*/
.Navigation-container {
    padding: 0px;

    .navbar {
        background-color: var(--nav-bg-color);
        transition: background-color 0.3s;
        padding-bottom: 15px;

        @media (max-width:786px) {
            padding: 8px 15px;
        }
    }

    .fa-duotone.fa-solid.fa-bars {
        color: var(--nav-hover-text-color);
    }

    .navbar-brand {
        color: var(--nav-text-color);
        font-weight: bold;

        @media screen and (max-width: 480px) {
            font-size: 16px;
        }
    }

    .navbar-brand i {
        margin-right: 5px;
        color: var(--lightbulb-color);
        font-size: 1.5rem;
    }

    .navbar-nav .nav-item .nav-link {
        color: var(--nav-text-color);
        position: relative;
        transition: 0.3s;
        transform: translateX(0);
        margin-right: 20px;
        display: flex;
        align-items: center;
        font-weight: 500;
        max-width: max-content;
    }

    .navbar-nav .nav-item .nav-link i {
        margin-right: 5px;
        font-weight: 700;
    }

    .navbar-nav .nav-item .nav-link:hover {
        transform: translateX(var(--nav-link-hover-transform));
        /* Hover effect with a transform */
        max-width: max-content;

    }

    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, .75);
        max-width: max-content;
    }

    .navbar-nav .nav-item .nav-link::before {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--nav-hover-text-color);
        transition: 0.3s;
    }

    .navbar-nav .nav-item .nav-link:hover::before {
        width: 100%;
    }

    /* Center the logo on mobile devices */
    @media (max-width: 767px) {
        .navbar-brand {
            text-align: center;
            width: 54%;
        }

        .navbar-toggler {
            margin-left: auto;
            /* Push the toggler icon to the right */
        }

        .navbar-collapse {
            padding-left: 36px;
            text-align: center;
        }
    }

    .nav-login-btn {

        display: inline-flex;
        justify-content: center;
        align-items: center;

        .btn-login {
            background-color: var(--login-btn-bg-color);
            color: var(--login-btn-text-color);
            border-radius: 5px;
            padding: 8px 20px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            border: 1px solid var(--login-btn-bg-color);
            display: flex;
            align-items: center;
        }

        .btn-login i {
            margin-right: 5px;
        }

        .btn-login:hover {
            background-color: var(--login-btn-hover-bg-color);
            color: var(--login-btn-hover-text-color);
            border: 1px solid var(--login-btn-bg-color);
        }
    }

}

/* Base styles */
.nav-item.dropdown {
    position: relative;
}

.nav-item .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Chevron icon style */
.chevron-icon {
    margin-top: 1px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Dropdown menu hidden by default */
/* Base Dropdown Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    min-width: 180px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Dropdown Items */
.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    white-space: nowrap;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f3f3f3;
    color: #007bff;
}

/* Show submenu on hover (Desktop) */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    background: none;
    border: none;
    padding: 0;

    a{
      color: var(--toggle-icon-color);  
      &:active,&:hover{
        background: transparent;
        color: var(--login-btn-text-color);
      }
    }

    @media (max-width: 576px) {
        width: 40%;
    }
}

/* Chevron Icon Styling */
.chevron-icon {
    margin-top: 3px;
    margin-left: 6px;
    transition: transform 0.3s ease;

    &::before {
        margin-left: 3px;
        margin-top: 2px;

        @media (min-width: 768px) {
            margin-left: -2px;
        }
    }
}

.nav-item.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
    margin-left: 3px;
}

/* Remove Bootstrap default arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Mobile Friendly Dropdown Behavior */
@media (max-width: 768px) {
    .nav-item.dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border-radius: 0;
        padding-left: 20px;
        background-color: #fafafa;
    }

    .nav-item.dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu li a {
        padding: 8px 15px;
        font-size: 14px;
        color: #444;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .chevron-icon {
        margin-left: auto;
    }
}

/* Optional: Hide Bootstrap collapse if needed */
@media (min-width: 968px) {
    .collapse:not(.show) {
        display: none !important;
    }
}


@media (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        padding-right: 70px;
    }
}

@media (min-width: 768px) {

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid,
    .navbar-expand-md>.container-lg,
    .navbar-expand-md>.container-md,
    .navbar-expand-md>.container-sm,
    .navbar-expand-md>.container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: wrap !important;
    }
}

@media (min-width:768px) and (min-width:920px) {

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid,
    .navbar-expand-md>.container-lg,
    .navbar-expand-md>.container-md,
    .navbar-expand-md>.container-sm,
    .navbar-expand-md>.container-xl {
        display: flexbox;
    }
}

a.nav-link.active {
    /* Base styles - enhanced */
    padding: 12px 20px;
    /* Slightly more padding */
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 50%, #4e54c8 100%);
    /* Dynamic gradient */
    border-radius: 24px;
    /* Smoother curve */
    color: #fff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    /* Deeper shadow */
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3), 0 1px 5px rgba(0, 0, 0, 0.2);
    /* Glow effect */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    /* Bouncy easing */
    border: none;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 220px;
    /* Slightly wider */
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Increased gap */

    /* Enhanced default animation */
    animation: pulseGlow 2.5s infinite ease-in-out, float 4s infinite ease-in-out;
}

/* Icon - more dynamic */
a.nav-link.active::before {
    content: '\1F464';
    /* User silhouette */
    font-size: 18px;
    /* Larger icon */
    display: inline-block;
    transition: all 0.4s ease;
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
    /* Icon shadow */
}

/* Enhanced hover effects */
a.nav-link.active:hover {
    background: linear-gradient(135deg, #8f94fb, #4e54c8, #8f94fb);
    /* Reverse with loop */
    box-shadow: 0 8px 20px rgba(78, 84, 200, 0.5), 0 3px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px) scale(1.05);
    /* More pronounced */
    animation-play-state: paused;
    /* Pause animations */
}

a.nav-link.active:hover::before {
    transform: scale(1.3) rotate(360deg);
    /* Full spin */
    color: #fff;
    animation: iconWobble 0.5s ease;
}

/* Focus styles - more visible */
a.nav-link.active:focus {
    outline: none;
    box-shadow: 0 0 0 5px rgba(78, 84, 200, 0.4), 0 4px 15px rgba(78, 84, 200, 0.3);
    transform: translateY(-3px);
}

/* Click animation - more responsive */
a.nav-link.active:active {
    transform: scale(0.92) translateY(1px);
    /* Bounce back */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.1s ease;
    /* Quick response */
}

/* Gradient shine - more subtle */
a.nav-link.active::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shineRotate 5s infinite linear;
}

a.nav-link.active:hover::after {
    opacity: 1;
}

/* Enhanced keyframes */
@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(78, 84, 200, 0.3), 0 1px 5px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 6px 25px rgba(78, 84, 200, 0.5), 0 2px 8px rgba(0, 0, 0, 0.25);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes shineRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconWobble {

    0%,
    100% {
        transform: scale(1.3) rotate(360deg);
    }

    25% {
        transform: scale(1.4) rotate(350deg);
    }

    75% {
        transform: scale(1.2) rotate(370deg);
    }
}

/* Ripple effect - more refined */
a.nav-link.active:active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.7s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

/* Media query - enhanced responsiveness */
@media (max-width: 480px) {
    a.nav-link.active {
        margin-top: 12px;
        max-width: 160px;
        padding: 10px 16px;
        font-size: 14px;
        gap: 6px;
    }

    a.nav-link.active::before {
        font-size: 16px;
    }
}

.dark-mode-toggle {
    color: var(--toggle-icon-color);
    cursor: pointer;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    padding-top: 8px;
    justify-content: center;

    @media (max-width: 720px) {
        font-size: 18px;
    }
}




.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
}

/* --------naviagtion end---------- */

/* ----#Files page--------*/
.files-container {
    padding-top: 30px;
    background-color: #FFFFF0;

    @media (min-width:480px) {
        padding-top: 40px 2px 10px 2px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;

        & .heading-h1 {
            font-size: 42px;
            padding-bottom: 20px;

            em {
                font-size: 38px;
                color: #713abe;

                @media (max-width:480px) {
                    font-size: 26px;
                }
            }

            @media (max-width:480px) {
                font-size: 28px;
            }
        }
    }

    header {
        text-align: center;
        margin-bottom: 20px;
    }

    .search-filter {
        display: flex;
        gap: 10px;
        margin-top: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        @media (max-width:480px) {
            display: flex;
            flex-direction: column;

            .search-bar {
                border-color: #5a2d9c;
            }
        }

        .filter-options {
            max-width: 300px;
            border-width: 1px soild #000;
        }

        .search-text-drop {
            span {
                font-size: 18px;
                font-weight: 500;
                padding: 2px;

                em {
                    color: #713abe;
                    font-style: italic;
                    transition: all 0.3s ease;
                }

                @media (max-width: 480px) {
                    font-size: 14px;
                    font-weight: 600;
                    padding: 1px;

                    em {
                        color: #713abe;
                        font-style: italic;
                        text-decoration: none;
                    }
                }
            }
        }


        #no-results-message {
            color: #9C27B0;
            /* Red color for visibility */
            font-size: 16px;
            text-align: center;
            margin-top: 20px;
        }


    }

    .search-bar {
        padding: 10px;
        width: 200px;
    }

    .filter-options {
        padding: 10px;
    }

    .cardContainer {
        background-color: transparent;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 50px;

    }

    .card {
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.2s;
        border-color: #3f3f3f;

        /* margin-bottom: auto; */
        @media (max-width:480px) {
            max-height: 350px;
            margin-bottom: 10px;
        }

        @media (max-width:320px) {
            padding-bottom: 20px;
        }

    }

    .card:hover {
        transform: scale(1.05);
    }

    .card .card-image-wrapper {
        width: 100%;
        height: 200px;
        background: #000;


        @media (max-width:480px) {
            height: 280px !important;
            max-height: 150px;
            align-items: center;
            object-fit: fill;
        }
    }

    .card {
        img {
            background-color: #1f1f1f;
            max-width: 100%;
            width: 100%;
            height: 320px;
            object-fit: fill;
            max-height: 200px;

            @media (max-width:480px) {
                height: 280px !important;
                max-height: 150px;
                align-items: center;
                object-fit: fill;
            }
        }

        .like-container {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;

            button {
                border: none;
                background: transparent;
                padding: 0px;

                .like-btn {
                    font-size: 24px;
                    /* Slightly larger size for better visibility */
                    color: #ccc;
                    transition: all 0.3s ease;
                    /* Smooth transition for all properties */
                    animation: pulseLike 0.6s ease-in-out;
                    transform-origin: center;

                    @media (max-width:480px) {
                        font-size: 18px;
                    }
                }

                .like-btn.liked {
                    color: #e63946;
                    /* Red for liked */
                    transform: scale(1.2);
                    /* Slightly grow the icon */
                    animation: fillHeart 0.3s ease-in-out;
                    /* Animation for fill effect */
                }

                /* Hover animation for a more dynamic feel */
                .like-btn:hover {
                    transform: scale(1.3);
                    /* Increase size on hover */
                    color: #ff5c8d;
                    /* Light pinkish color for hover */
                    transition: transform 0.2s ease, color 0.2s ease;
                }
            }
        }

        /* Animation for the pulsing effect */
        @keyframes pulseLike {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

    }



    .card .content {
        padding: 15px;

        @media (max-width:480px) {
            padding-bottom: auto;
        }
    }

    .card h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .card p {
        padding-bottom: 3px;
    }

    .content {
        .card-h2 {
            font-weight: 600;

            @media (max-width:480px) {
                font-size: 1em;
            }

            @media (max-width:780px) {
                font-size: 1.3em;
                min-height: 40px;
            }
        }

        .card {

            p {
                padding-bottom: 3px;

            }
        }
    }


    .card-btn-container {
        display: flex;
        justify-content: space-between;

        @media (max-width:680px) {
            flex-direction: column;
            gap: 5px;
        }

        @media (max-width:480px) {
            justify-content: space-between;
            flex-direction: row;
            gap: 5px;
        }

        .view-btn,
        .Download-pdf-btn {
            display: inline-block;
            padding: 12px 24px;
            font-size: 16px;
            color: #fff;
            background: linear-gradient(135deg, var(--nav-bg-color) 0%, #0073e6 100%);
            border: none;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            position: relative;
            /* Needed for pseudo-element positioning */
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
            font-weight: bold;
            letter-spacing: 0.5px;
            overflow: hidden;
            /* Hides any overflow from the pseudo-element border */


            /* Animated Border */
            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 8px;
                /* Match the button's border radius */
                border: 2px solid #fff;
                /* Border color */
                opacity: 0;
                transform: scale(1.2);
                /* Scale up for the animation */
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            /* Hover effects */
            &:hover {
                background: linear-gradient(135deg, #0073e6 0%, var(--nav-bg-color) 100%);
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            }

            /* Hover effect for border animation */
            &:hover::before {
                opacity: 1;
                transform: scale(1);
                /* Scale down to align with button edges */
            }

            /* Active state */
            &:active {
                transform: translateY(1px);
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            }
        }

        /* Responsive font size */
        @media (max-width: 988px) {

            .view-btn,
            .Download-pdf-btn {
                font-size: 14px;
                padding: 8px 16px;
            }
        }

        @media (max-width: 480px) {

            .view-btn,
            .Download-pdf-btn {
                font-size: 12px;
                padding: 8px 16px;
            }
        }
    }

    /* Base button styling */



    .card p {
        color: #000;
        padding-bottom: 3px;
        font-weight: 400;
        font-size: 14px;
        min-height: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;

    }

    .pdf-viewer {
        margin-top: 30px;
        height: 600px;
    }

    .pdf-viewer iframe {
        width: 100%;
        height: 100%;
    }

    @media (max-width: 1280px) {
        .cardContainer {
            grid-template-columns: repeat(3, 1fr);
           
        }
    }

    @media (max-width: 480px) {
        .cardContainer {
            grid-template-columns: repeat(2, 2fr);
        
            gap: 10px;
        }
    }

    @media (max-width: 326px) {
        .cardContainer {
            grid-template-columns: 1fr !important;
        }
    }

    @media (min-width: 576px) {
        .cardContainer {
            padding: 30px 25px;
        }
    }

    .result-sort-container {
        display: flex;
        justify-content: space-between;
        flex-direction: row;

        .cardsResults {
            position: relative;
            top: 50px;

            @media (max-width:480px) {
                top: 28px;
            }

            p#cardCount {
                color: #222;
                font-weight: 600;
                display: flex;
                padding: 5px;
                margin: 0px;
                top: 30px;
                max-width: max-content;

                @media (max-width:480px) {
                    padding: 20px 0px 5px 0px;

                }

                @media (min-width:480px) {
                    top: 48px;
                }

            }
        }

        .sort-container-main {
            .sort-container {
                display: flex;
                align-items: center;
                padding: 10px 15px;
                position: relative;
                top: 0px;

                span {
                    i.fa-sort {
                        position: relative;
                        top: 38px;
                        left: 27px;
                        font-size: 18px;
                        font-weight: 600;
                        z-index: 1;
                    }
                }
            }

            @media (max-width: 468px) {
                top: 20px;
            }

            .sort-options {
                appearance: none;
                width: 100%;
                top: 37px;
                left: 11px;
                padding: 4px 20px;
                font-size: 16px;
                color: #333;
                background-color: transparent;
                outline: none;
                position: relative;
                cursor: pointer;
                border: none;
                font-weight: 600;
                transition: border-color 0.3s ease, box-shadow 0.3s ease;
            }
        }
    }
}

/*--Load more-*/


.preloader-container {
    text-align: center;
    margin: 20px 0;
}

.preloader {
    display: inline-block;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* Base style for reset button */
#resetButton {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

/* Hover effect */
#resetButton:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Click effect */
#resetButton:active {
    background-color: #004494;
    transform: scale(0.98);
}

/* Responsive styles for tablets (portrait) */
@media (max-width: 768px) {
    #resetButton {
        padding: 8px 18px;
        font-size: 14px;
        max-width: max-content;
        position: relative;
        left: 35%;
    }
}



/* Additional Animation on Click */
@keyframes button-click {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fillHeart {
    0% {
        transform: scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#resetButton:active {
    animation: button-click 0.2s ease-in-out;
}

/*-- preloader---*/
.Preloader-container {

    /* Preloader container */
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        /* Match your website's background */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .loader-text {
        position: relative;
        font-size: 30px;
        font-weight: 400;
        padding-left: 10px;

        @media (max-width:480px) {
            font-size: 22px;
        }
    }
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid var(--brand-color-1);
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
        opacity: 0.5;
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
        opacity: 0.75;
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
        opacity: 1;
    }

    37.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 75% 100%, 25% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }

    87.5% {
        clip-path: polygon(50% 50%, 75% 100%, 75% 100%, 75% 100%, 75% 100%, 50% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
        opacity: 0.5;
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg);
        filter: brightness(1);
    }

    25% {
        transform: scaleY(1) rotate(45deg);
        filter: brightness(1.2);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
        filter: brightness(1.5);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
        filter: brightness(1);
    }

    75% {
        transform: scaleY(-1) rotate(-45deg);
        filter: brightness(1.2);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
        filter: brightness(1.5);
    }
}


/*preloader end---*/

.pdfPreview {
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        min-height: 90%;
    }

    .overlay-content {
        position: relative;
        width: 100%;
        max-width: 800px;
        background: #fff;
        padding: 1em;
        border-radius: 8px;
    }

    .overlay iframe {
        width: 100%;
        height: 600px;
        border: none;
    }

    .close-btn-container {


        & .close-btn {
            position: absolute;
            top: 23px;
            right: 23px;
            font-size: 24px;
            cursor: pointer;
            border-radius: 30px;
            color: #ffffff;
            padding: 32px 15px 7px 8px;
            background-color: #3f3f3f;


            i.fa-regular.fa-circle-xmark {
                color: cyan;
                position: relative;
                top: -11px;
                left: 3px;
                font-size: 30px;

                &:hover {
                    color: red;
                    font-size: 30px;
                    transition: linear;
                }
            }
        }
    }

}

.footer-section {
    min-height: 100px;

    .footer {
        background-color: var(--nav-bg-color);
        color: #fff;
        padding: 20px 0;
        margin-top: auto;

        @media (min-width:480px) {
            padding: 30px 5px;
        }
    }

    .footer-content {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 20px;
    }

    .footer-section {
        flex: 1;
        padding: 10px;
        min-width: 200px;
    }

    .footer-section h3 {
        margin-bottom: 10px;
    }

    .footer-section p,
    .footer-section ul,
    .footer-section ul li {
        margin: 5px 0;
    }

    .footer-section ul li a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section ul li a:hover {
        color: #ffa500;
    }

    .social-icons a {
        color: #fff;
        margin-right: 10px;
        font-size: 1.2em;
        transition: color 0.3s;
    }

    .social-icons a:hover {
        color: #ffa500;
    }

    .footer-bottom {
        text-align: center;
        padding: 10px;
        background-color: #222;
    }

    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            align-items: center;
        }
    }
}

/* Customize colors and fonts to match your design */
select#filterOptions,
#mainFilterOptions {
    max-width: -webkit-fill-available;
    width: 100%;
    border: 2px solid #5a2d9c;
    border-radius: 10px;
    font-weight: 600;

    &:nth-child(1) {
        font-weight: 650;
    }
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    outline: none;
    border: 2px solid #5a2d9c;
    border-radius: 10px;
}

/*---filter correction---*/
.files-container {
    div.search-drop-main {
        display: flex;
        flex-direction: column !important;

        @media (max-width: 768px) {
            flex-direction: row;
        }

        & .search-container {
            position: relative;
            display: flex;
            align-items: center;
            width: 420px;

            @media (max-width: 768px) {
                flex-direction: column;
                width: 100%;
                max-width: 220px;

            }

            .search-bar {
                @media (max-width: 768px) {
                    max-width: 300px;
                    width: 250px;
                }
            }

            .search-icon {
                position: absolute;
                top: 50%;
                right: 10px;
                transform: translateY(-50%);
                font-size: 18px;
                /* Adjust font size as needed */
                color: #666;
                pointer-events: none;

                @media (max-width: 768px) {
                    right: 8px;
                }
            }
        }
    }

    .select-container {
        #mainFilterOptions {
            @media (min-width: 768px) {
                width: 160px;
            }
        }
    }

    .search-filter {
        .filter-container {
            display: flex;
            flex-direction: row;
            gap: 10px;

            @media (max-width: 768px) {
                flex-direction: column !important;
                width: 200px !important;
                max-width: 300px;
            }

            & .main-filter-options,
            .filter-options {
                cursor: pointer;
                min-width: 150px;
                width: 150px;
                padding: 10px;
                background-color: #f8f8f8;
                color: #333;
                outline: none;
                appearance: none;
                background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23333' d='M10 12l5-5H5l5 5z'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: right 7px center;
                /* Adjusted position */
                background-size: 18px;
                /* Reduced size for better appearance */
                border: 1px solid #ddd;
                /* Added border for better visibility */
                border-radius: 4px;
                /* Added border-radius for smoother edges */
                transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;

                &.open {
                    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23333' d='M10 8l5 5H5l5-5z'/%3E%3C/svg%3E");
                    border-color: #aaa;
                    background-color: #f0f0f0;
                }

                /* Hover state for better interactivity */
                &:hover {
                    border-color: #aaa;
                    background-color: #f0f0f0;
                    transform: scale(1.02);
                    /* Slightly enlarges on hover */
                }

                @media (min-width: 768px) {
                    width: 250px;

                }

                @media (max-width: 768px) {
                    background-size: 24px;

                }
            }

            & .filter-options {
                min-width: 180px !important;
            }
        }

        @media (max-width: 768px) {
            display: flex;
            flex-direction: column;
        }
    }

    /* Rotation for arrow icon */
    select.rotate-arrow {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23333' d='M10 12l5-5H5l5 5z'/%3E%3C/svg%3E");
        transform: rotate(180deg);
    }

    #no-results-message {
        font-size: 20px;
        color: #555;
        margin: 0;
        position: relative;
        top: 40px;

        em {
            color: var(--brand-color-1);
            font-size: 24px;
        }

        @media (max-width: 768px) {
            color: #1f1f1f;
            font-weight: 600;
            font-size: 18px;
            padding: 20px 0px 20px 40px;
        }

        @media (max-width: 480px) {
            font-size: 17px;
        }

        & .resultsCategory {
            font-weight: bold;
            font-style: italic;
            font-size: 22px;
            color: var(--nav-bg-color);

            & ::first-letter {
                text-transform: uppercase;
            }

            @media (max-width:768px) {
                font-size: 20px;
            }
        }
    }

}

/**--blog-page--*/
.blog-main-container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    justify-content: flex-start;
    /* Align content to the right */
}

/* Latest News as an Aside */
.side-news {
    flex: 1;
    max-width: 30%;
    /* Set the width for the sidebar */
    position: relative;
    right: 130px;

    @media (max-width:920px) {
        right: 50px;
        margin-left: 20px;
    }

    @media (max-width:768px) {
        right: 0px;
        justify-content: center;

    }
}

.latest-news {
    padding: 20px;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;

    .news-container {
        .news-article {
            h2.tech-h2 {
                font-size: 20px;

                a {
                    color: #1f1f1f;
                    padding-bottom: 10px;
                }
            }

            p.tech-p {
                padding: 5px 3px;
                max-width: max-content;
                background: #007bff;
                margin-top: 5px !important;
                border-radius: 4px;
                border-color: 1px solid #713abe;

                a {
                    color: #ffff;
                    font-size: 16px;
                    text-decoration: none;
                    font-weight: 500;
                }

            }
        }
    }
}

.latest-news h2.Ttile-blog {
    color: #000;
    font-weight: 500;
    background: linear-gradient(90deg, #0072ff 0%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.news-article {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #222;
}

.news-article h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #222;
}




/* Responsive Styling */
@media (max-width: 768px) {
    .blog-main-container {
        flex-direction: column;
        align-items: center;
        /* Center the aside on smaller screens */
    }

    .side-news {
        max-width: 100%;
        /* Make the sidebar full width on smaller screens */
        margin-left: 0;

        .news-article h2 {
            font-size: 1.5rem;
            margin: 0;
            color: #222;
        }
    }

    .latest-news {
        margin-bottom: 20px;
    }

}

@media (max-width: 480px) {
    .blog-main-container {
        padding: 0 10px;
    }

    .latest-news {
        padding: 15px;
    }
}

/* Learning Resources Section */
.learning-resources {
    flex: 2;
    max-width: 70%;
    /* Adjust the width relative to the tech news aside */
    margin-left: 30px;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.resource-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #007bff;
}

.resource-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.resource-article {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.resource-article h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.resource-article ul {
    list-style: none;
    padding-left: 0;
}

.resource-article ul li {
    margin-bottom: 10px;
}

.resource-article ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-article ul li a:hover {
    color: #0056b3;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .blog-main-container {
        flex-direction: column;
        align-items: center;
    }

    .side-news {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .learning-resources {
        max-width: 100%;
        margin-left: 0;
    }

    .resource-container {
        flex-direction: column;
    }

    .resource-article {
        flex: 1 1 100%;
    }
}

/*----scroll to top ----*/
.scroll-top-container {
    .scroll-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: none;
        /* Initially hidden */
        width: 50px;
        height: 50px;
        background-color: var(--nav-bg-color);
        color: #fff;
        border: none;
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        font-size: 18px;
        cursor: pointer;
        z-index: 1000;
        transition: opacity 0.3s ease, transform 0.3s ease;

        &:hover {
            background-color: #0056b3;
            transform: scale(1.1);
        }
    }
}

/*-----Tictok----*/
/* Container to center the button */
.blog-main-container {
    display: flex;
    flex-direction: column;

    .ticTok-container {
        max-width: 100%;

        .tictok-warpper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 60vh;

            .tictok-btn {
                background: #ffff;
                border-radius: 8px;
                cursor: pointer;
                transition: transform 0.2s ease;
            }
        }
    }
}

/*login -overlay-*/
/* General overlay styles */
#loginOverlayParent {
    &.overlay-parent {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, #1e3c72, #2a5298);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;

        .overlay-container {
            width: 100%;
            max-width: 500px;
            padding: 20px;
            box-sizing: border-box;

            .overlay {
                position: relative;
                background: linear-gradient(to bottom, #ffffff, #f9f9f9);
                padding: 30px;
                border-radius: 15px;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
                text-align: center;
                animation: fadeIn 0.3s ease-in-out;

                @keyframes fadeIn {
                    from {
                        opacity: 0;
                        transform: scale(0.9);
                    }

                    to {
                        opacity: 1;
                        transform: scale(1);
                    }
                }

                .close-btn {
                    position: absolute;
                    top: 10px;
                    right: 10px;
                    background: none;
                    border: none;
                    font-size: 24px;
                    color: #888;
                    cursor: pointer;
                    transition: transform 0.3s, color 0.3s;

                    &:hover {
                        transform: rotate(90deg);
                        color: #555;
                    }

                    i {
                        font-size: 24px;
                    }
                }

                .overlay-content {
                    form {
                        &.login-form {
                            width: 100%;

                            h2 {
                                font-family: 'Poppins', sans-serif;
                                font-size: 26px;
                                font-weight: 600;
                                color: #333;
                                margin-bottom: 20px;
                                text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
                            }

                            .input-group {
                                position: relative;
                                margin-bottom: 20px;

                                .input-icon {
                                    position: absolute;
                                    top: 50%;
                                    left: 10px;
                                    transform: translateY(-50%);
                                    color: #888;
                                    font-size: 18px;
                                }

                                input {
                                    width: 100%;
                                    padding: 12px 12px 12px 40px;
                                    font-size: 16px;
                                    border: 2px solid #ddd;
                                    border-radius: 8px;
                                    box-sizing: border-box;
                                    transition: border-color 0.3s;

                                    &:focus {
                                        border-color: #1e90ff;
                                        outline: none;
                                    }
                                }
                            }

                            .error-msg {
                                color: #ff4d4d;
                                font-size: 14px;
                                margin: -10px 0 10px;
                                display: none;

                                &.hidden {
                                    display: none;
                                }
                            }

                            .btn-primary {
                                background: linear-gradient(to right, #1e90ff, #0056b3);
                                color: #fff;
                                font-size: 16px;
                                padding: 12px 20px;
                                border: none;
                                border-radius: 8px;
                                cursor: pointer;
                                transition: background 0.3s, transform 0.2s;
                                width: 100%;
                                margin-top: 10px;

                                &:hover {
                                    background: linear-gradient(to right, #0056b3, #1e90ff);
                                    transform: scale(1.05);
                                }

                                &:active {
                                    transform: scale(0.95);
                                }
                            }

                            .switch-form {
                                margin-top: 15px;
                                font-size: 14px;
                                color: #666;

                                span {
                                    color: #1e90ff;
                                    cursor: pointer;
                                    text-decoration: underline;
                                    transition: color 0.3s;

                                    &:hover {
                                        color: #0056b3;
                                    }
                                }
                            }
                        }
                    }

                    .admin-msg {
                        h4 {
                            font-size: 15px;
                            padding: 20px;
                            font-weight: 400;
                        }
                    }
                }
            }
        }
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    #loginOverlayParent {
        .overlay-container {
            padding: 15px;

            .overlay {
                padding: 20px;

                .overlay-content {
                    form {
                        h2 {
                            font-size: 22px;
                        }

                        .btn-primary {
                            font-size: 15px;
                        }

                        .input-group input {
                            font-size: 14px;
                            padding: 10px 10px 10px 35px;
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 480px) {
    #loginOverlayParent {
        .overlay-container {
            padding: 10px;

            .overlay {
                padding: 15px;

                .overlay-content {
                    form {
                        h2 {
                            font-size: 20px;
                        }

                        .btn-primary {
                            font-size: 14px;
                            padding: 10px 15px;
                        }

                        .input-group input {
                            font-size: 13px;
                            padding: 8px 8px 8px 30px;
                        }
                    }
                }
            }
        }
    }
}

.notification--login-overlay {
    position: fixed;
    top: -50px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: #333;
    opacity: 0;
    transition: top 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

.notification--login-overlay.show {
    top: 20px;
    opacity: 1;
}

.notification--login-overlay.success {
    background-color: #4caf50;
    /* Green for success */
}

.notification--login-overlay.error {
    background-color: #f44336;
    /* Red for error */
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    max-width: 90%;
    width: 400px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Arial', sans-serif;
    animation: slide-up 0.4s ease-out;

    #rejectCookies {
        background: #333;
        color: white;
    }
}

.cookie-popup p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.cookie-popup .button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-popup button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.cookie-popup .accept {
    background-color: var(--brand-color-1);
    /* Green */
    color: white;
    box-shadow: 0
}

.feed-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    max-width: 90%;
    background: #ffffff;
    color: #333;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    animation: slideUp 0.4s ease-in-out;
    cursor: pointer;
}

.popup-content {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.feed-popup p {
    margin: 0;
    color: #222;
}

.popup-close {
    background: none;
    border: none;
    font-size: 22px;
    font-weight: bold;
    color: var(--brand-color-1);
    cursor: pointer;
    margin-left: 10px;
    transition: transform 0.2s;
}

.popup-close:hover {
    transform: scale(1.2);
    color: var(--login-btn-bg-color);
}

/* Slide animation */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .feed-popup {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 15px;
        padding: 12px 15px;
        font-size: 13px;
        width: 50%;
    }

    .popup-close {
        font-size: 20px;
    }
}

/* Default: show text */
.card-btn-container .btn-text {
    display: inline;
}

/* Mobile view: hide text only on small screens */
@media (max-width: 480px) {
    .card-btn-container .btn-text {
        display: none;
    }

    .card-btn-container button {
        padding: 8px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-btn-container i {
        margin: 0;
    }
}
.card {
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}
